home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 February / EnigmA AMIGA RUN 04 (1996)(G.R. Edizioni)(IT)[!][issue 1996-02][Skylink CD III].iso / earcd / util4 / change.lha / Change / source / Include / SDI_structures.h < prev   
C/C++ Source or Header  |  1995-12-31  |  547b  |  20 lines

  1. // $VER: SDI_structures.h 1.3 (15.10.1995)
  2.  
  3. #ifndef SDI_STRUCTURES_H
  4. #define SDI_STRUCTURES_H
  5.  
  6. #include <dos/dos.h>
  7.  
  8. /* ============================= Strukturen ============================= */
  9.  
  10. struct SDI_InOut {        // immer alles mit 0 initialisieren
  11.   ULONG     file;    // Filehandle
  12.   STRPTR    buf;    // Zeiger auf Speicherbeginn
  13.   ULONG     size;    // Speichergröße
  14.   ULONG        count;    // Lesezähler : aktuelle Pufferbelegung
  15.             // Schreibzähler : aktuelle Größe des Gesamt-Files
  16.   STRPTR    pos;    // Zeiger auf aktuelle Position
  17.   };
  18. #endif /* SDI_STRUCTURES_H */
  19.  
  20.